home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / developm / language / harvest.cpt / Harvest C / DCollection.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-10  |  197 b   |  16 lines

  1. /*
  2.     DCollection.h
  3.     
  4. */
  5.  
  6. #include "DObject.h"
  7.  
  8. class DCollection : public DObject {
  9.     protected:
  10.     long numItems;
  11.     public:
  12.     void ICollection(void);
  13.     long GetNumItems(void);
  14.     Boolean IsEmpty(void);
  15. };
  16.